home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España: xRes 2.0 / macformat_xres.iso / Gráficos 3D / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7010.txt < prev    next >
Text File  |  1996-03-22  |  3KB  |  89 lines

  1. Returns the layer visibility of the layer that is connected to LayerHandle.
  2.  
  3. GetLVis(LayerHandle : HANDLE) : INTEGER;
  4.  
  5. Returns the text style of the font in a text block that is connected to TextHandle.
  6.  
  7. GetStyle(TextHandle : Handle) : INTEGER;
  8.  
  9. Returns the text size in points of the text block that is connected to TextHandle.
  10.  
  11. GetSize(TextHandle : Handle) : INTEGER;
  12.  
  13. Returns the ID number of the font in a text block that is connected to TextHandle.
  14.  
  15. GetFont(TextHandle : Handle) : INTEGER;
  16.  
  17. Returns the bottom Y coordinate value of the bounding box of the objects that fit the search criteria.
  18.  
  19. BotBound(<Search Criteria>) : REAL;
  20.  
  21. Returns the far right X coordinate value of the bounding box of the objects that fit the search criteria.
  22.  
  23. RightBound(<Search Criteria>) : REAL;
  24.  
  25. Returns the top Y coordinate value of the bounding box of the objects that fit the search criteria.
  26.  
  27. TopBound(<Search Criteria>) : REAL;
  28.  
  29. Returns the far left X coordinate value of the bounding box of the objects that fit the search criteria.
  30.  
  31. LeftBound(<Search Criteria>) : REAL;
  32.  
  33. Returns the Y center coordinate value of the objects that fit the search criteria.
  34.  
  35. YCenter(<Search Criteria>) : REAL;
  36.  
  37. Returns the X center coordinate value of the objects that fit the search criteria.
  38.  
  39. XCenter(<Search Criteria>) : REAL;
  40.  
  41. Returns the width of the objects that fit the search criteria.
  42.  
  43. Width(<Search Criteria>) : REAL;
  44.  
  45. Deselects objects that fit the search criteria.
  46.  
  47. DSelectObjs(<Search Criteria>);
  48.  
  49. Selects objects that fit the search criteria.
  50.  
  51. SelectObjs(<Search Criteria>);
  52.  
  53. Returns the perimeter of the objects that fit the search criteria.
  54.  
  55. Perim(<Search Criteria>) : REAL;
  56.  
  57. Returns the object type of the objects that fit the search criteria.
  58.  
  59. ObjectType(<Search Criteria>) : INTEGER;
  60.  
  61. Returns the length of the objects that fit the search criteria.
  62.  
  63. Length(<Search Criteria>) : REAL;
  64.  
  65. Returns the height of the objects that fit the search criteria.
  66.  
  67. Height(<Search Criteria>) : REAL;
  68.  
  69. Returns the number of the objects that fit the search criteria.
  70.  
  71. Count(<Search Criteria>) : REAL;
  72.  
  73. Returns the area of the objects that fit the search criteria.
  74.  
  75. Area(<Search Criteria>) : REAL;
  76.  
  77. Returns the angles of the objects that fit the search criteria.
  78.  
  79. Angle(<Search Criteria>) : REAL;
  80.  
  81. Returns the numeric value contained within the active spreadsheet cell designated by the parameters Row & Column.
  82.  
  83. CellValue(Row,Column : INTEGER) : REAL;
  84.  
  85. Returns the string value contained within the active spreadsheet cell designated by the parameters Row & Column.
  86.  
  87. CellString(Row,Column : INTEGER) : STRING;
  88.  
  89.